home *** CD-ROM | disk | FTP | other *** search
/ Sonic Foundry Demo / Sonic Foundry Demo CD (SonicFoundry)(2001).iso / Product Information / en_html / loopnav.js < prev    next >
Text File  |  2001-12-06  |  2KB  |  44 lines

  1.  
  2. function ChangeForm(theList) {
  3.     var thePage;    
  4.     switch (theList[theList.selectedIndex].value) {
  5.         case "all":
  6.             thePage = "loops_main.html"; document.location = thePage; break;
  7.         case "ambient":
  8.             thePage = "loops_ambient.html"; document.location = thePage; break;
  9.         case "artist":
  10.             thePage = "loops_artist.html"; document.location = thePage; break;
  11.         case "cinematic":
  12.             thePage = "loops_cinematic.html"; document.location = thePage; break;
  13.         case "classical":
  14.             thePage = "loops_classical.html"; document.location = thePage; break;
  15.         case "construction":
  16.             thePage = "loops_construction.html"; document.location = thePage; break;
  17.         case "dance":
  18.             thePage = "loops_dance.html"; document.location = thePage; break;
  19.         case "drums":
  20.             thePage = "loops_drums.html"; document.location = thePage; break;
  21.         case "electronica":
  22.             thePage = "loops_electronica.html"; document.location = thePage; break;
  23.         case "ethnic":
  24.             thePage = "loops_ethnic.html"; document.location = thePage; break;
  25.         case "hiphop":
  26.             thePage = "loops_hiphop.html"; document.location = thePage; break;
  27.         case "industrial":
  28.             thePage = "loops_industrial.html"; document.location = thePage; break;
  29.         case "jazz":
  30.             thePage = "loops_jazz.html"; document.location = thePage; break;
  31.         case "rnb":
  32.             thePage = "loops_rnb.html"; document.location = thePage; break;
  33.         case "rock":
  34.             thePage = "loops_rock.html"; document.location = thePage; break;
  35.         case "soundeffects":
  36.             thePage = "loops_soundeffects.html"; document.location = thePage; break;
  37.         case "techno":
  38.             thePage = "loops_techno.html"; document.location = thePage; break;
  39.         case "none":
  40.             thePage = "#"; document.location = thePage; break;
  41.     }
  42. }
  43.  
  44.